body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

#frontend {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    background-color: #FFD700;
    color: #000000;
    padding: 15px;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    border-radius: 5px;
}

h2 {
    color: #FFD700;
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
}

h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.title {
    font-size: 1.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 10px;
}

.titlepara {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 30px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #1a1a1a;
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid #FFD700;
    font-size: 1.1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

ul li:hover {
    transform: translateX(10px);
    background-color: #333333;
}

.work {
    margin-top: 20px;
}

.work h2 {
    text-align: center;
}

.work hr {
    border: 0;
    height: 2px;
    background-color: #FFD700;
    margin: 20px 0;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project {
    margin-bottom: 20px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 5px;
    flex: 1 1 calc(50% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.project h3 {
    margin-top: 0;
}

.project p {
    font-size: 1em;
    margin-bottom: 15px;
}

.project a {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.project a:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.contact-section {
    margin-top: 40px;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-links a {
    background-color: #FFD700;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex: 1 1 auto;
    text-align: center;
    min-width: 150px;
}

.contact-links a:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    .title {
        font-size: 1.5em;
    }

    .titlepara {
        font-size: 1em;
    }

    .projects-container {
        flex-direction: column;
    }

    .project {
        flex: 1 1 100%;
    }
    .contact-section{
        width: 90%;
    }
    .contact-links {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }

    .contact-links a {
        width: 100%;
        max-width: none;
    }
}